* {
  box-sizing: border-box;
  /* outline: 1px solid red;  */
}

html,
body {
  margin: 0;
  background-color: #f7f4f3;
  height: 100%;
}

main {
    padding-top: 90px; /* so content doesnt go under the navbar */
}

/* Navigation bar */
.navbar {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  font-family: 'Libre Baskerville', serif;
  box-shadow: 0 4px 6px rgb(170, 167, 162);
  height: 90px;

  /* Sticky navbar */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
}

.nav-logo img {
  height: 80px;
  width: auto;
  display: block;
  margin: 5px 18px;
}

#ig-icon {
  height: 45px;
  width: auto;
  display: block;
  margin: 0;
}

.navbar-right {
  margin-right: 30px;
}

.navbar-right ul {
  list-style: none;
  display: flex;
  gap: 100px;
}

.navbar-right li {
  font-size: 20px;
  font-weight: bold;
  transition: text-decoration 1s ease;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 20px;
  color: black;
  text-decoration: none;
  text-align: center;
}

.navbar a:hover {
  color: #322c27;
  text-decoration: underline;
}